home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / COMMON / TOOLS / VB / CABINETS / MSDAO350.CAB / icontrols / marquee / IMarqueeElement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-01-08  |  607 b   |  26 lines

  1. package icontrols.marquee;
  2.  
  3. import com.ms.wd.ui.Control;
  4. import com.ms.wd.ui.Graphics;
  5. import com.ms.wd.ui.Rectangle;
  6.  
  7. public interface IMarqueeElement {
  8.    void create(Control var1, int var2, int var3);
  9.  
  10.    Object getTag();
  11.  
  12.    Object getTag(int var1, int var2);
  13.  
  14.    void paintIn(Rectangle var1, Graphics var2);
  15.  
  16.    void scroll(int var1, int var2);
  17.  
  18.    int getWrapCount();
  19.  
  20.    void setWrapCount(int var1);
  21.  
  22.    Rectangle getBounds();
  23.  
  24.    void setLocation(int var1, int var2);
  25. }
  26.